home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright (c) 2001 Moonstone Interactive, Inc.
- All Rights Reserved. No portion of this file, including but
- not limited to any associated code, documents or images, may be
- copied, retransmitted, reposted, duplicated or otherwise
- used without the express written permission of Moonstone Interactive, Inc.
-
- */
-
- function include_copyright01(startyear) {
- var blob="";
- var msistartyear = 1996;
- var today=new Date();
- var thisyear = get_full_year(today);
- if (startyear < thisyear && startyear >= msistartyear) {
- blob += startyear + " - ";
- }
- blob += thisyear;
- blob = "<img src='/img/spacer.gif' alt='' border='0' width='3' height='1' align='right'><font face='Arial, Helvetica' size='1'>All Rights Reserved, Copyright © FUJITSU " + blob + "</font><br><br>";
- return blob;
- }
-
- /*
- ** subroutine: get_full_year
- ** param1: d -> date. any date object.
- */
- function get_full_year(d) { // d is a date object
- yr = d.getYear();
- if (yr < 1000) {
- yr+=1900;
- }
- return yr;
- }
-
-
- /* copyright script for subpages */
-
-
- function include_copyright_sub(startyear) {
- var blob="";
- var msistartyear = 1996;
- var today=new Date();
- var thisyear = get_full_year(today);
- if (startyear < thisyear && startyear >= msistartyear) {
- blob += startyear + " - ";
- }
- blob += thisyear;
- blob = "<img src='../../../img/spacer.gif' alt='' border='0' width='3' height='1' align='right'><font face='Arial, Helvetica' size='1'>All Rights Reserved, Copyright © FUJITSU " + blob + "</font><br><br>";
- return blob;
- }
-
- /*
- ** subroutine: get_full_year
- ** param1: d -> date. any date object.
- */
- function get_full_year(d) { // d is a date object
- yr = d.getYear();
- if (yr < 1000) {
- yr+=1900;
- }
- return yr;
- }
-